www.gusucode.com > VC++ 实现多幅图像的打印-源码程序 > VC++ 实现多幅图像的打印-源码程序/code/print/DlgMeaning.cpp

    //Download by http://www.NewXing.com
// DlgMeaning.cpp : implementation file
//

#include "stdafx.h"
#include "print.h"
#include "DlgMeaning.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDlgMeaning dialog


CDlgMeaning::CDlgMeaning(CWnd* pParent /*=NULL*/)
	: CDialog(CDlgMeaning::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDlgMeaning)
	m_meaning = _T("");
	//}}AFX_DATA_INIT
}


void CDlgMeaning::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDlgMeaning)
	DDX_Text(pDX, IDC_MEANING, m_meaning);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CDlgMeaning, CDialog)
	//{{AFX_MSG_MAP(CDlgMeaning)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDlgMeaning message handlers